Hello Gurus, |
Re: Isolating objects under level 1
Hi,
void dealWith(Object o) {
}
|
Re: Isolating objects under level 1
Hi,
void dealWith(Object oBase) {
// whatever needs to be done..
}
Object oBase = ??? // the base object
for
|
Re: Isolating objects under level 1
Hi,
void dealWith(Object oParent) {
Object oChild
for oChild in oParent {
//
// whatever needs to be done...
//
dealWith(oChild)
}
}
Object oBase = ??? // the base object
dealWith(oBase)
|
Re: Isolating objects under level 1 adevicq - Wed Oct 19 13:03:55 EDT 2011
Hi,
void dealWith(Object oParent) {
Object oChild
for oChild in oParent {
//
// whatever needs to be done...
//
dealWith(oChild)
}
}
Object oBase = ??? // the base object
dealWith(oBase)
|